home *** CD-ROM | disk | FTP | other *** search
- unit Arrtest3;
-
- interface
-
- uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, Buttons,
- StdCtrls, ExtCtrls;
-
- type
- TSortDlg = class(TForm)
- OKBtn: TBitBtn;
- CancelBtn: TBitBtn;
- GrpSortOrder: TRadioGroup;
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- SortDlg: TSortDlg;
-
- implementation
-
- {$R *.DFM}
-
- end.
-